home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 60 / IOPROG_60.ISO / soft / c++ / gsl-1.1.1-setup.exe / {app} / src / cblas / ztrsm.c < prev    next >
Encoding:
C/C++ Source or Header  |  2002-04-18  |  463 b   |  18 lines

  1. #include <gsl/gsl_math.h>
  2. #include <gsl/gsl_cblas.h>
  3. #include "cblas.h"
  4.  
  5. #include "hypot.c"
  6.  
  7. void
  8. cblas_ztrsm (const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side,
  9.          const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA,
  10.          const enum CBLAS_DIAG Diag, const int M, const int N,
  11.          const void *alpha, const void *A, const int lda, void *B,
  12.          const int ldb)
  13. {
  14. #define BASE double
  15. #include "source_trsm_c.h"
  16. #undef BASE
  17. }
  18.